home *** CD-ROM | disk | FTP | other *** search
/ Screen Effects / Screen Effects.iso / programs / np20 / newpaper.doc < prev    next >
Text File  |  1994-04-27  |  5KB  |  138 lines

  1.  
  2.       The NEWSPAPER program and documentation were originally written by
  3.       Jim Button, and put into the Public Domain. Likewise, all of my
  4.       modifications to this program and documentation, in the spirit of
  5.       what Jim Button originally intended, are also put into the Public
  6.       Domain.
  7.  
  8.       TIP - Suggest that you get a copy of our WGV.EXE (Windows Graphic
  9.       View) program, and convert a couple of your favorite GIF pictures
  10.       to full screen bitmaps (*.BMP). They work really great with the
  11.       NEWPAPER program.
  12.  
  13.       Enjoy !!!
  14.  
  15.       Bob Jack
  16.  
  17.       ---<>---
  18.  
  19.     VERSION HISTORY:
  20.  
  21.     Version 1.0  created 7/28/90
  22.         The original
  23.     Version 1.1  created 7/30/90
  24.         Makes automatic choice of tiled or un-tiled wallpaper
  25.     Version 1.1b created 8/30/90
  26.         No changes. Decided to make the source code available.
  27.  
  28.     ---<>---
  29.  
  30.     Version 2.0 - 06/01/92
  31.         Total rewrite, cleanup of code, and conversion of program to
  32.         compile under Borland's C++ version 3.0. Added user defined
  33.         bitmap (*.BMP) storage.
  34.  
  35.     IT'S TOTALLY FREE
  36.  
  37.       This Windows program is free. There are no strings attached! It's
  38.       donated to the Public Domain, as Jim Button had originally wanted
  39.       it to be.
  40.  
  41.     WHAT IT DOES
  42.  
  43.       It changes your desktop wallpaper for you each time you run
  44.       windows. So, you can have several wallpaper files in either your
  45.       windows subdirectory, or any other subdirectory. Each time you run
  46.       windows, a different wallpaper will be selected.
  47.  
  48.     REQUIREMENTS
  49.  
  50.       NEWPAPER requires Windows 3.0 or later and one or more *.BMP files
  51.       (to use as wallpaper) in a subdirectory.
  52.  
  53.     HOW TO INSTALL IT
  54.  
  55.       First, copy the program NEWPAPER.EXE into your Windows
  56.       subdirectory.
  57.  
  58.       Run windows, and use the NOTEPAD function to edit the WIN.INI file
  59.       in your Windows subdirectory.
  60.  
  61.       Inside your WIN.INI file, you should find a line that looks like
  62.       this:
  63.  
  64.         [windows]
  65.  
  66.       Somewhere in the next few lines that follow the [windows] section,
  67.       you should find a line that starts out like this:
  68.  
  69.         run=
  70.  
  71.       There may be some file names following the run= text, for example
  72.  
  73.         run=eyes.exe
  74.  
  75.       If you don't find a run= line, add one. Add the statement
  76.       NEWPAPER.EXE to the run= line. Here are some sample run= lines...
  77.  
  78.         run=newpaper.exe
  79.  
  80.             - or -
  81.  
  82.         run=eyes.exe blanker.exe newpaper.exe
  83.  
  84.       Notice that you must have a space between each program listed on
  85.       the run= line.
  86.  
  87.       ---<>---
  88.  
  89.       To add the optional subdirectory storage, look for this line:
  90.  
  91.         [Desktop]
  92.  
  93.       Under it, add a line which reads:
  94.  
  95.         bmpdir=d:\bitmaps
  96.  
  97.       Change the d:\bitmaps portion to whatever drive/directory you have
  98.       your *.BMP stored in.
  99.  
  100.       Note - The bmpdir= portion may already exist. If it does, just add
  101.              the drive/directory part.
  102.  
  103.    HOW TO USE IT
  104.  
  105.       This is the easy part. After you've installed NEWPAPER.EXE, just
  106.       run windows. There's nothing else to do. Every time you run
  107.       windows, you should get a different desktop wallpaper.
  108.  
  109.       You can fill the subdirectory with as many bitmap files as you
  110.       like. (These are file names that end with the suffix ".BMP").
  111.  
  112.       NOTE: NEWPAPER doesn't actually change the wallpaper you are
  113.       looking at. It lets Windows do that.  So, if you run NEWPAPER from
  114.       your desktop, you will not see a change in your wallpaper.  The
  115.       wallpaper will not get changed until the next time Windows starts
  116.       up.
  117.  
  118.  
  119.    HOW IT WORKS
  120.  
  121.       NEWPAPER changes your WIN.INI file each time it runs. There is a
  122.       line inside of WIN.INI that says "Wallpaper=", followed by the
  123.       name of a bitmap file. NEWPAPER just looks at all the bitmap files
  124.       in your subdirectory, and changes the "Wallpaper=" line to point
  125.       to a new bitmap file. Which new bitmap file? The next one in your
  126.       subdirectory. After it gets to the last one, it will start again
  127.       at the top.
  128.  
  129.       NEWPAPER also makes a decision about whether to put your wallpaper
  130.       up "tiled" or un-tiled. To do this, it looks at the size of the
  131.       BMP file. If the BMP file is less than 100K, it uses tiled
  132.       wallpaper. Otherwise it uses un-tiled wallpaper.
  133.  
  134.       The program only runs for a brief instant when Windows starts up.
  135.       Then it goes away.  So it doesn't waste any memory or CPU cycles
  136.       after it has done its work.
  137.  
  138.